home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Internet / Web Things / HTML 201.sit / HTML 201 / HTML 201.rsrc / TEXT_142.txt < prev    next >
Encoding:
Text File  |  1996-03-13  |  1.3 KB  |  74 lines

  1.  
  2. REFERENCE
  3.  
  4. Here is a quick reference to remind you what certain tags mean:
  5.  
  6. This is the basic outline of an HTML document:
  7.  
  8. <HTML>
  9. <HEAD>
  10. <TITLE>
  11. </TITLE>
  12. </HEAD>
  13. <BODY>
  14. </BODY>
  15. </HTML>
  16.  
  17. Tags covered in HTML 101 & HTML 201
  18.  
  19. <P>        paragraph tag
  20.  
  21. <BR>        line break tag
  22.  
  23. <HR>        horizontal rule tag
  24.  
  25. <B> </B>        bold tag
  26.  
  27. <I> </I>        italics tag
  28.  
  29. <DL> </DL>        definition list tag
  30.  
  31. <DT>        definition term tag
  32.  
  33. <DD>        definition description
  34.  
  35. <UL> </UL>        unordered list tag
  36.  
  37. <OL> </OL>        ordered list tag
  38.  
  39. <LI>        list item tag
  40.  
  41. <A HREF="value"> </A>        anchor tag with hypertext reference value
  42.  
  43. <A HREF="mailto:email address"> </A>         anchor tag with email value
  44.  
  45. <A NAME="some name">        anchor point
  46.  
  47. <A HREF="#some name"> </A>        jump link
  48.  
  49. <IMG SRC="title.GIF">        insert graphic tag
  50.  
  51. ALIGN=top
  52. ALIGN=middle        alignment commands
  53. ALIGN=bottom
  54.  
  55. <IMG SRC="title.GIF" ALIGN=top>        graphic tag with alignment command
  56.  
  57. <CENTER> </CENTER>        center tags
  58.  
  59. <BODY BGCOLOR="#ffffff" TEXT="#000000" LINK="#0000a0" VLINK="#ff0000"> </BODY>         color modification of background, text, link and visited links
  60.  
  61. Hexidecimal codes for colors
  62.  
  63. 000000-black                                        ffff00-primary yellow
  64.  
  65. 0033ff-primary blue                    cc9966-beige
  66.  
  67. cc0000-primary red                    cccccc-light gray
  68.  
  69. ff00cc-hot pink                                666699-dark gray
  70.  
  71. 6600cc-purple                                    3333ff-turqoise
  72.  
  73. 9966ff-lavender                                00cc33-primary green
  74.